Re: [INTERFACES] JDBC next() method - Mailing list pgsql-interfaces

From Herouth Maoz
Subject Re: [INTERFACES] JDBC next() method
Date
Msg-id l03130300b340fc9753f8@[147.233.159.109]
Whole thread Raw
In response to JDBC next() method  (Jon Barnett <jbarnett@pobox.com>)
List pgsql-interfaces
At 15:57 +0300 on 14/04/1999, Jon Barnett wrote:


> I had expected that an empty result set would be
> returned if the history table is empty (0 rows returned for the select), and
> queryResult.next() would be false.  Is this an incorrect interpretation
>on my
> part?

It is. In PostgreSQL, when an aggregate function is used, it always returns
one row containing one field. If it had no values that matched the query,
that one field is NULL.

The result of an aggregate is never 0 rows. It is always one row (per group
if you used GROUP BY).

This is the reason why you have to check for a null field rather than for
the result of next(). You have to call next(), but you don't really have to
check its value, because it will be true once (and once only). You call it
merely to fetch the row. And then you get the value of the field thus
retrieved, and check it for null.

Herouth

--
Herouth Maoz, Internet developer.
Open University of Israel - Telem project
http://telem.openu.ac.il/~herutma



pgsql-interfaces by date:

Previous
From: Joe Dieckert
Date:
Subject: Re: [INTERFACES] Delphi TDataset
Next
From: "Sergio A. Kessler"
Date:
Subject: Re: [INTERFACES] Delphi TDataset